From: Kim F. Storm Date: Mon, 2 Aug 2004 23:59:28 +0000 (+0000) Subject: (compute_motion): Fix last change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~21482 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a01934dd076fd38476c361148eb5ed8a2ac9d723;p=emacs.git (compute_motion): Fix last change. --- diff --git a/src/indent.c b/src/indent.c index 63f1ed31930..de76464564e 100644 --- a/src/indent.c +++ b/src/indent.c @@ -1260,10 +1260,10 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width, width -= 1; } - continuation_glyph_width = 0; + continuation_glyph_width = 1; #ifdef HAVE_WINDOW_SYSTEM - if (!FRAME_WINDOW_P (XFRAME (win->frame))) - continuation_glyph_width = 1; + if (FRAME_WINDOW_P (XFRAME (win->frame))) + continuation_glyph_width = 0; /* In the fringe. */ #endif immediate_quit = 1;